.hoverGlow {
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: transparent;
    border-radius: 10px;
}

.hoverGlow:hover {
    background-color: #57575759;
}

.center {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #323232 10px, #171717 60%, #121212 100%);

    border-radius: 6px;
    overflow-y: scroll;
}
.spotifyPlaylist {
    padding: 20px 20px;
}
.cardContainer {
    gap: 10px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    white-space: nowrap;
}
.cardContainer::-webkit-scrollbar {
    display: none; 
}

.play {
    cursor: pointer;
    z-index: 10;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #1ed760;
    opacity: 0;
    transition: all 300ms cubic-bezier(0, 0, 0.19, 1.11);
}

.play button {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
}

.play:hover {
    transform: scale(1.04);
    background-color: #3be477;
}

.play:active {
    transform: scale(0.95);
}

.play img {
    cursor: pointer;
    width: 20px;
}

.cards {
    position: relative;
    display: flex;
    width: 180px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.cards p {
    line-height: 20px;
    font-size: 12px;
    color: #9c9c9c;
    font-weight: 700;
    width: 85%;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cards>div {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background-repeat: no-repeat;
    background-size: contain;
    width: 180px;
    height: 180px;
    border-radius: 10px;
}


.center-footer {
    padding: 0px 20px 20px 20px;
    flex-direction: column;
    gap: 20px;
}

.center-footer> :nth-child(1)> :nth-child(1) {
    width: 100%;
    height: 1px;
    background-color: #323232;
}

#center-footer-links {
    justify-content: space-between;
}

#center-footer-links> :nth-child(1) {
    flex-wrap: wrap;
    gap: clamp(40px, 5vw, 200px);
}

#center-footer-links> :nth-child(1)>div {
    flex-direction: column;
    gap: 5px;
}

#center-footer-links> :nth-child(1)>div h4 {
    font-size: 1.2rem;
}

#center-footer-links> :nth-child(1)>div a {
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    color: #a3a3a3;
}

#center-footer-links> :nth-child(1)>div>a:hover {
    text-decoration: underline;
    color: white;
}

#center-footer-links> :nth-child(2) {
    cursor: context-menu;
    flex: 1;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
}

#center-footer-links> :nth-child(2) a {
    cursor: context-menu;
}

#center-footer-links> :nth-child(2)>div {
    gap: 10px;
}

#center-footer-links> :nth-child(2) img {
    width: 20px;
}

#center-footer-links> :nth-child(2)>div div {

    width: fit-content;
    height: fit-content;
    padding: 12px;
    background-color: #313131;
    border-radius: 50%;
}

#center-footer-links> :nth-child(2)>div div:hover {
    background-color: #171717;
}

.center-footer> :nth-child(3)> :nth-child(1) {
    width: 100%;
    height: 1px;
    background-color: #323232;
}

.center-footer> :nth-child(4) {
    color: rgb(155, 155, 155);
    font-size: 12px;
    font-weight: 800;
    cursor: blink;
}

.center::-webkit-scrollbar {
    width: 10px;
}

.center::-webkit-scrollbar-track {
    background: none;
}

.center::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #222;
}

.center:hover::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.center::-webkit-scrollbar-thumb:hover {
    background-color: rgba(191, 191, 191, 0.6);
}